home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Telnet 2.7b5 / source / config / LinkedList.h < prev    next >
Encoding:
Text File  |  1995-03-28  |  118 b   |  9 lines  |  [TEXT/CWIE]

  1. //LinkedList.h
  2.  
  3. typedef struct LinkedListNode {
  4.     StringHandle name;
  5.     struct LinkedListNode *next;
  6. } LinkedListNode;
  7.  
  8.  
  9.